/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #ffffff;
    background: #f4f4f4;
    overflow-x: hidden;
}
h2{
    font-weight: 6px;
    font-size: 50px;
}

header {
    background: linear-gradient(135deg, #1f79d3, #000000);
    color: #000000;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    size: 2o0px;
}

/* Logo in Top Left Corner */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100000;
    /* animation: float 3s ease-in-out infinite; */
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.938);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ffffff;
}

.logo img:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(255, 254, 249, 0.651);
    border-color: #070605;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    
}
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        min-width: 100%;
    }

    .logo-small img {
        width: 60px; /* Smaller logo for mobile */
    }
}
/* Navigation */
nav {
    background: #000000;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #09d4d4;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
    animation: slideIn 1.5s ease-in-out;
}

.hero-content p {
    font-size: 1.5rem;
    animation: slideIn 1.5s ease-in-out;
}

.cta-button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #f1c40f;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #cfc9c4;
    transform: translateY(-3px);
}

/* About Section */
.about-school {
    padding: 40px 20px;
    background: linear-gradient(135deg, #1f79d3, #000000);
    color: #fffefe;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-content p {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.school-image {
    flex: 1;
    max-width: 16%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1.5s ease-in-out;
}

/* Features Section */
.features {
    padding: 40px 20px;
    background: linear-gradient(135deg, #1f79d3, #000000);
    color: #ffffff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.feature-cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
   background: linear-gradient(135deg, #1f79d3, #000000);
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(177, 148, 148, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 2rem;
    color: #f1f12e;
    margin-bottom: 10px;
}

.feature-card h3 {
    margin: 10px 0;
    color: #3baeb6;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 40px 20px;
    background: linear-gradient(135deg, #1f79d3, #000000);
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.testimonial-cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-card {
    background: linear-gradient(135deg, #1f79d3, #000000);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-card span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #ffffff;
}

/* Footer */
footer {
    background: #111111;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
/* Chatbot Container */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #f8f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

#chatbot-container.active {
    display: flex;
}

#chatbot-header {
    background: #ffffff;
    color: #1f1414;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-header span {
    font-size: 1rem;
    font-weight: bold;
}

#close-chatbot {
    background: none;
    border: none;
    color: #161414;
    font-size: 1.5rem;
    cursor: pointer;
}

#chatbot-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: 300px;
    background: #e6e6e6;
}

#chatbot-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    padding: 8px 12px;
    border-radius: 5px;
    max-width: 80%;
}

.message.bot {
    background: #f9f9f9;
    color: #241c1c;
    align-self: flex-start;
}

.message.user {
    background: #000000;
    color: #f8f8f8;
    align-self: flex-end;
}

#chatbot-input-container {
    display: flex;
    padding: 10px;
    background: #ffffff;
    border-top: 1px solid #382f2f;
}

#chatbot-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #3670e4;
    border-radius: 500px;
    outline: none;
}

#send-button {
    background: #000000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 500px;
    margin-left: 10px;
    cursor: pointer;
}

#send-button:hover {
    background: #94bbe2a6;
}

#open-chatbot {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: #ffffff;
    color: #000000;
    border: none;
    padding:  35px 5px;
    border-radius: 500%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

#open-chatbot:hover {
    background: #34495e;
}
/* Admission Button Styles */
.admission-button-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.admission-button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #1f1212;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.admission-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.admission-button:active {
    transform: scale(0.95);
}
/* Admission Form Styles */
.admission-form {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.admission-form h2 {
    text-align: center;
    color: #007bff;
    margin-bottom: 20px;
}

.admission-form p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}